Keyword Reference

False / True

Boolean values for use in logical expressions.

    $var = False
    $var = True

 

Parameters

None.

 

Remarks

These keywords should not be used in expressions as AutoIt will not detect this 'misuse' and the results will be unpredictable.

 

Related

 

Example


$bool= False
if NOT $bool = true Then Msgbox(0,"Bool comparison", "OK")